home *** CD-ROM | disk | FTP | other *** search
/ Perl Multimedia Cyber Classroom / PERL Multimedia Cyber Classroom (Prentice Hall)(1998).ISO / perlbyex / code.jar / 06ex013.jar / code / ch06 / 06ex013 / 06ex013.pl next >
Perl Script  |  1998-04-01  |  289b  |  9 lines

  1. #!/usr/bin/perl  
  2. #  Script: seek_with_read_write 
  3. open(FH, "+>joker") || die; # joker is opened for reading and writing 
  4. print FH "This line is written to joker.\n"; 
  5. seek(FH,0,0); # goto the beginning of the file 
  6. while(<FH>) { 
  7. print; # reads from joker; the line is in $_ 
  8. }  
  9.